From: Jim Blandy Date: Thu, 11 Mar 1993 06:58:20 +0000 (+0000) Subject: * Makefile.in (install.sysv): Add a second `$' in front of X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96961 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=200990702798bf424b273b54a870f91957999b36;p=emacs.git * Makefile.in (install.sysv): Add a second `$' in front of `${dest}', so that the shell will expand it, instead of Make. --- diff --git a/Makefile.in b/Makefile.in index 7dbf977ece5..d246e82138c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -314,7 +314,7 @@ install.sysv: all mkdir for dir in ${COPYDIR} ; do \ dest=$$1 ; shift ; \ if [ `/bin/pwd`/$${dir} != `(cd $${dest}; /bin/pwd)` ] ; then \ - (cd $${dir}; find . -print | cpio -pdum ${dest} ) ; \ + (cd $${dir}; find . -print | cpio -pdum $${dest} ) ; \ for subdir in `find $${dest} -type d ! -name RCS -print` ; do \ rm -rf $${subdir}/RCS ; \ rm -rf $${subdir}/CVS ; \